home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PFillAndLine.h < prev    next >
C/C++ Source or Header  |  1996-09-04  |  777b  |  40 lines

  1. /*
  2.  *--- PFillAndLine.h ------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PFillAndLine__
  10. #define __PFillAndLine__
  11.  
  12. #include "PMTypes.h"
  13.  
  14. class PFillAndLine
  15. {
  16.  
  17. public:
  18.  
  19.     PFillAndLine
  20.       (    short cFillStyle,
  21.         const char * sFillColor,
  22.         PMBool  bFillOverprint,
  23.         short cLineStyle,
  24.         short bReverse,
  25.         short dWeight,
  26.         PMBool  bOpaque,
  27.         const char * sLineColor,
  28.         PMBool  bLineOverprint,
  29.         short nFillTint,
  30.         short nLineTint);
  31.  
  32. private:
  33.  
  34.     PFillAndLine();
  35. };
  36.  
  37. #endif
  38.  
  39. // end of PFillAndLine.h
  40.